From: kaf24@firebug.cl.cam.ac.uk Date: Thu, 15 Sep 2005 07:21:31 +0000 (+0000) Subject: More build fixes for latest binutils. No 'movl' between X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16780^2~81^2 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/%22/%22http:/www.example.com/cgi/%22?a=commitdiff_plain;h=e81e11f6c5863584f4d02db2cfef508bd6f7fd85;p=xen.git More build fixes for latest binutils. No 'movl' between a segment register and memory location. Signed-off-by: Keir Fraser --- diff --git a/linux-2.6-xen-sparse/include/asm-xen/asm-x86_64/mmu_context.h b/linux-2.6-xen-sparse/include/asm-xen/asm-x86_64/mmu_context.h index 9558ddc045..f7580d3b0c 100644 --- a/linux-2.6-xen-sparse/include/asm-xen/asm-x86_64/mmu_context.h +++ b/linux-2.6-xen-sparse/include/asm-xen/asm-x86_64/mmu_context.h @@ -35,7 +35,7 @@ static inline void __prepare_arch_switch(void) * of cr3/ldt (i.e., not in __switch_to). */ __asm__ __volatile__ ( - "movl %%es,%0 ; movl %%ds,%1 ; movl %%fs,%2 ; movl %%gs,%3" + "mov %%es,%0 ; mov %%ds,%1 ; mov %%fs,%2 ; mov %%gs,%3" : "=m" (current->thread.es), "=m" (current->thread.ds), "=m" (current->thread.fsindex),